home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Bytes: Money & Finance
/
PowerBytes Money and Finance CD-ROM 01
/
PowerBytes Money and Finance CD-ROM 01.iso
/
Utilities
/
XLISP Source Code
/
XLISP Examples
/
Fact.LSP
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Lisp/Scheme
|
1985-01-26
|
84 b
|
4 lines
(defun factorial (n)
(cond ((= n 1) 1)
(t (* n (factorial (- n 1))))))